Welcome![Sign In][Sign Up]
Location:
Search - Design Compiler

Search list

[Linux-Unixcla_dc

Description: a demo script of \"carry lookahead adder\" for synopsys design compiler
Platform: | Size: 1906 | Author: heyong | Hits:

[ELanguagemini词法分析器

Description: 编译原理课程设计-词法分析器-Course Design Compiler Principle - lexical analyzer
Platform: | Size: 83293 | Author: 吴峰 | Hits:

[WEB CodeBuilding-An-Optimizing-Compiler

Description: This book is designed to be used for the purpose to describe the structure of an optimizing compiler so that a reader can implement it or a variation (compiler writers always modify a design).
Platform: | Size: 7716779 | Author: samuel chuang | Hits:

[Other resourcecompiler design

Description: 英文版编译器设计:里面详细介绍啦C编译器的设计-English compiler design : inside details -- C Compiler Design
Platform: | Size: 1219792 | Author: lisa | Hits:

[ELanguagefydlq

Description: 编译原理课程设计布尔表达式输出逆波兰式运用ll(1)法-Course Design Compiler Principle output Boolean expressions using inverse Polish ll (1) Act
Platform: | Size: 5681868 | Author: yxd | Hits:

[ELanguage编译原理课程设计 SLR(1)语法分析

Description: 编译原理课程设计 SLR(1)语法分析!我做的,就是没有运行结果,大家先用着-Course Design Compiler Principle SLR (1) syntax analysis! I do, is not running, we used to first
Platform: | Size: 15781 | Author: 超杰 | Hits:

[Software Engineeringadvanced.asic.synthesis.w.synopsis

Description: Advanced ASIC Chip Synthesis Using Synopsys Design Compiler. This second edition of this book describes the advanced concepts and techniques used towards ASIC chip synthesis, physical synthesis, formal verification and static timing analysis, using the Synopsys suite of tools.-Advanced ASIC Chip Synthesis Using Synopsys Design Compiler. This second edition of this book describes the advanced concepts and techniques used towards ASIC chip synthesis, physical synthesis, formal verification and static timing analysis, using the Synopsys suite of tools.
Platform: | Size: 2290136 | Author: testsb | Hits:

[VC/MFCModern C++ Design

Description: This book introduces the concept of generic components-reusable design templates that produce boilerplate code for compiler consumption-all within C++. Generic components enable an easier and more seamless transition from design to application code, generate code that better expresses the original design intention, and support the reuse of design structures with minimal recoding
Platform: | Size: 1214118 | Author: mattzhu | Hits:

[ELanguagec_compiler

Description: 本程序集是Allen I. Holub所写的《Compiler Design in C》一书的附随软件,其中有作者自己编写的词法分析和语法分析工具LeX,occs和LLama,该软件包还包括一个显示C语言分析过程的程序-This set of program is the attached software in 《Compiler Design in C》 writed by Allen I. Holub, it contains the Lex, occs and Llama which are phraseing analysis tools writed by Allen, it also contains a program which can display the analysis procedure of C
Platform: | Size: 1003520 | Author: 站长 | Hits:

[ELanguagewhale-0.3.2-src

Description: Complete support for EBNF notation; Object-oriented parser design; C++ output; Deterministic bottom-up "shift-reduce" parsing; SLR(1), LALR(1) and LR(1) table construction methods; Automatic parse tree creation; Possibility to output parse tree in XML format; Verbose conflict diagnostics; Generation of tree traverse procedures
Platform: | Size: 220160 | Author: none | Hits:

[Bookscomputer science - compiler design - introduction

Description: 有关计算理论的英文教材-the computational theory of teaching English
Platform: | Size: 3917824 | Author: 王慧 | Hits:

[ELanguage实例有详细文档的哦

Description: 一个小型c compiler的设计与实现-a small c compiler Design and Implementation
Platform: | Size: 894976 | Author: 张晶 | Hits:

[ELanguagemini词法分析器

Description: 编译原理课程设计-词法分析器-Course Design Compiler Principle- lexical analyzer
Platform: | Size: 249856 | Author: 吴峰 | Hits:

[ELanguagehc_compiler

Description: 由于时间紧迫及事先准备不足,编译器最后定型时暴露出不少问题及不足之处,主要有以下一些方面:   不支持数组数据类型,这是文法分析器设计时的一个疏漏,由于时间关系,最后只得把扫描器中已做好的相关的数组部分删去。   对于float数据类型的支持,直到语义分析都是正常的,也能生成相应的汇编代码,但由于我们对8086/8088指令系统本身了解不足,这样的汇编代码将只能做到含义上完全忠实于源程序,但不能运行。   对于局部变量的支持,则于时间紧迫,所有的局部变量全被处理成静态变量。使递归函数不能得到正确的结果。    对于函数调用语句,不进行参数匹配检查,如果参数数量不对,也将能通过编译,但运行时将产生非法操作。   对&& !等逻辑操作在最后生成代码时处理比较粗燥,生成的代码在逻辑复杂时将不能保证运行正常。   接下来有一些,不能说是缺陷,但必须说明的问题:   对于main函数,没有参数表,通回类型也必须为void,但如果写上参数表及其他返回类型也能编译通过,生成代码时将简单地忽略,不影响最后的代码的运行。   对于while,for,if语句,其语句体不管是一句还是多句,必须都有{}围起来。这跟C语言中若是一句则可省略{}不同。-Due to the time constraints and lack of preparation in advance, the compiler finalized when exposed numerous problems and shortcomings, mainly in the following aspects : no support for array data type, which is grammar analyzer design of an omission, because of the time, the final could only have scanners do phase customs array deleted. For float data types of support until semantic analysis is normal, and can generate the corresponding assembly code, but because of our 8086/8088 directive to the knowledge of the system itself, this compilation can do to code meaning entirely faithful to the source, but not running. For the support of local variables, in the time constraints, all local variables were all handled in the static variable. So recursive function will not get the right results.
Platform: | Size: 260096 | Author: 周杰 | Hits:

[Editor中间代码优化

Description: 这是编译原理的源代码,涉及了编译原理的各个过程:词法分析,LL1语法分析,语义分析,中间代码生成,中间代码优化(常表达式优化,公共表达式优化,循环不变式优化),中间代码生成目标代码,目标代码的解释执行,详细地阐述了一个编译器的设计和实现。它是大纲教学,课程设计良好的示范,也是编程爱好者提高的好参考,其中这是中间代码优化部分。希望尽早的开通我的帐号,和大家多多交流,成为热爱编程的好朋友。-this principle is to compile the source code, the compiler principles involved in various processes : lexical analysis, LL1 syntax analysis, semantic analysis and code generation and code optimization (regular expression optimization, public expression optimization, optimization loop invariant), intermediate code generation target code goal of the interpretation and implementation of code, described in detail a compiler design and implementation. It is the outline of teaching, curriculum design good model, as well as programming enthusiasts to raise a good reference, it is the middle part of code optimization. Early hopes for the opening of my account, and we interact more, as a good friend who love programming.
Platform: | Size: 13312 | Author: | Hits:

[Editor中间代码生成目标

Description: 这是编译原理的源代码,涉及了编译原理的各个过程:词法分析,LL1语法分析,语义分析,中间代码生成,中间代码优化(常表达式优化,公共表达式优化,循环不变式优化),中间代码生成目标代码,目标代码的解释执行,详细地阐述了一个编译器的设计和实现。它是大纲教学,课程设计良好的示范,也是编程爱好者提高的好参考,其中这是中间代码生成目标代码部分。希望尽早的开通我的帐号,和大家多多交流,成为热爱编程的好朋友。-this principle is to compile the source code, the compiler principles involved in various processes : lexical analysis, LL1 syntax analysis, semantic analysis and code generation and code optimization (regular expression optimization, public expression optimization, optimization loop invariant), intermediate code generation target code goal of the interpretation and implementation of code, described in detail a compiler design and implementation. It is the outline of teaching, curriculum design good model, as well as programming enthusiasts to raise a good reference, which is code-generating object code part. Early hopes for the opening of my account, and we interact more, as a good friend who love programming.
Platform: | Size: 7168 | Author: | Hits:

[Editor目标代码的解释执行

Description: 这是编译原理的源代码,涉及了编译原理的各个过程:词法分析,LL1语法分析,语义分析,中间代码生成,中间代码优化(常表达式优化,公共表达式优化,循环不变式优化),中间代码生成目标代码,目标代码的解释执行,详细地阐述了一个编译器的设计和实现。它是大纲教学,课程设计良好的示范,也是编程爱好者提高的好参考,其中这是目标代码的解释执行部分。希望尽早的开通我的帐号,和大家多多交流,成为热爱编程的好朋友。-this principle is to compile the source code, the compiler principles involved in various processes : lexical analysis, LL1 syntax analysis, semantic analysis and code generation and code optimization (regular expression optimization, public expression optimization, optimization loop invariant), intermediate code generation target code goal of the interpretation and implementation of code, described in detail a compiler design and implementation. It is the outline of teaching, curriculum design good model, as well as programming enthusiasts to raise a good reference, which is the target code operative explained. Early hopes for the opening of my account, and we interact more, as a good friend who love programming.
Platform: | Size: 8192 | Author: | Hits:

[ELanguage020833

Description: 这是个编译原理的课程设计,是一个DO-WHILE循环语句的翻译程序设计,包括词法分析,语法分析,生成中间代码四元式。-This is a compiler theory of curriculum design, is a DO-WHILE loop is the translation program design, including lexical analysis, grammar analysis, code generation middle-4 yuan.
Platform: | Size: 8192 | Author: 冷清雪 | Hits:

[Other编译原理First集合和Follow集合的求解

Description: 相信计算机专业的学生在学《编译原理》时都做了有关求first和follow集的问题。此程序用VC++做,相信会给大家一定的帮助。-it s sure that the student of computer do first and follow when learning <<compiler>>. This program uses vc++,and i am sure it is useful for everyone!
Platform: | Size: 338944 | Author: 如月 | Hits:

[ELanguage编译原理课程设计 SLR(1)语法分析

Description: 编译原理课程设计 SLR(1)语法分析!我做的,就是没有运行结果,大家先用着-Course Design Compiler Principle SLR (1) syntax analysis! I do, is not running, we used to first
Platform: | Size: 15360 | Author: 超杰 | Hits:
« 1 2 3 45 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net